home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 80 / CD Actual 80 Julio-Agosto 2003.iso / Linux / LinuxGazette / lg / issue01to08 / misc / popcheck < prev    next >
Encoding:
Text File  |  2002-08-14  |  464 b   |  22 lines

  1. #!/bin/sh
  2. #
  3. # program:    popcheck    4 aug 1995
  4. # descript:    periodically checks my mail on the POP Server while a 
  5. #        PPP connection is up.
  6. #
  7. # First, some variables
  8. PopServer=ctrvax.vanderbilt.edu
  9. Name=myname
  10. Password=mypassword
  11. MailFolder=/root/mail/mail-in
  12.  
  13. # Now, make sure the PPP PID file is extant
  14. while [ -e "/var/run/ppp0.pid" ]    
  15. do
  16.     sleep 15m
  17.     if [ -e "/var/run/ppp0.pid" ]; then
  18.         popclient -3 -u $Name -p $Password -o $MailFolder $PopServer
  19.     fi
  20. done
  21. exit 0
  22.